home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / AMUG / PROGRAMMING / Raven 1.2 Examples.sit / Raven 1.2 Examples / DropCount / Resources / DropCount.r next >
Text File  |  1996-10-28  |  764b  |  37 lines

  1. /*
  2.  *  File:       DropCount.r
  3.  *  Summary:       DropCount resources
  4.  *  Written by: Jesse Jones
  5.  *
  6.  *  Copyright ゥ 1996 Jesse Jones. 
  7.  *    For conditions of distribution and use, see copyright notice in ZTypes.h  
  8.  *
  9.  *  Change History (most recent first):    
  10.  *
  11.  *         <->     5/06/96    JDJ        Created
  12.  */
  13.  
  14. #include "Types.r"
  15.  
  16.  
  17. // Note that resource ids below 256 are reserved for Raven.
  18.  
  19. // ===================================================================================
  20. //    Strings
  21. // ===================================================================================
  22.  
  23. // DropCount will only open files with one of these extensions.
  24. resource 'STR#' (256, "Extensions") {{
  25.     ".h";
  26.     ".c";
  27.     ".cc";
  28.     ".cp";
  29.     ".cpp";
  30.     ".hpp";
  31.     ".c++";
  32.     ".inl";
  33.     ".inc";
  34.     ".pch";
  35.     ".pch++";
  36. }};
  37.